10. Arrays

Arrays

INSTRUCTOR NOTE:

What the heck is all that green text???

["Euler", 3.14159, {name: "James", job: "Course Developer"}, myFunc]

It's an example array that demonstrates how you can make a valid array that mixes JavaScript data types.

"Euler" is a string. 3.14159 is a number. {name: "James", job: "Course Developer"} is an object (you'll be learning about those soon).
And myFunc is a function (more on functions in the next lesson)!

Follow your instructors!

@cwpittman

+jameswilliams